#linkCase {display: flex;}

.bookmark-section {
  width: calc(50% - 6px);
  height: auto;
  background-color: rgb(224, 224, 224);
  padding: 6px;
  margin: 6px;
  display: flex;
  flex-flow: wrap column;
}

/*EXPANSION DESIGN */
.cover-wrapper {
	width: calc(100% - 12px);
	height: auto;
	margin: 6px auto;
	padding: 3px;
	background-color: white;
}

.expand { /* toggling class overiding the "item-wrapper" class */
	width: calc(50%-12px);
	height: auto;
	transition: transform 10s ease-in-out 2s;
	display: block;
	grid-template-rows: auto auto;
	grid-template-columns: auto;
}

.subject {display: block; width: 100%; min-width: 30px; height: auto; padding: 2px; margin: 0;}
.subject a {display: inline-block; font-size: 1.4em; max-width: calc(100% - 38px);}
.back-button {float: right; align-self: center;}

.desc { /* extra text */
	display: none;
	height: auto;
	width: 100%;
	font-size: 1.2em;
	transition: transform 3s;
	margin: auto;
	cursor: default;
  }